home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_03 / saks / nesthide.hpp < prev   
Encoding:
C/C++ Source or Header  |  1995-01-04  |  181 b   |  12 lines

  1. Listing 2 - A nested class name hidden by a data member 
  2. name.
  3.  
  4. struct A
  5.     {
  6.     struct B
  7.         {
  8.         static int n;
  9.         } B;
  10.     enum E { e = 1 } E;
  11.     } A;
  12.